home *** CD-ROM | disk | FTP | other *** search
- // WinHacker Script
- // Copyright (c) 1996 Wedge Software
- //
- // Example INI script
- //
- // For best testing results, put a "file.ini" file (blank)
- // into the c:\ directory.
- //
- // The file will be created if not there (using the direct method,
- // putting "c:\" in the location, and "file.ini" as the file.
- // The user can create it also by putting "file.ini" in the Open
- // dialog box (in the file space), even though it is not there.
- //
- // You can use 2 actions, Write and Delete
- //
-
- [Main]
- Desc = Full INI file example
- // Ask = Click on NO, this is not meant to be run!
- // StartMessage = This is a start message.
- // ExitMessage = This is a exit message.
-
- [Ini]
- Procs = 1
-
- // Create the file if not there
-
- [IniProc#1]
- // Ask = Run IniProc#1?
- File = (DialogAskFolder#1)
- Section = Junk Section
- Item = Junk
- Action = Write
- Value = This was written just to create the file...
-
- [DialogAskFolder#1]
- Append=file.ini
-
-
-